home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual 76 / DVD Actual 1 Marzo 2003.iso / Trial / TurboCAD 7.1 Pro / Data.Cab / F24361_PropDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-10  |  1.4 KB  |  54 lines

  1. #if !defined(AFX_PROPDIALOG_H__430FB7B3_A088_11D1_B79F_000021452DB6__INCLUDED_)
  2. #define AFX_PROPDIALOG_H__430FB7B3_A088_11D1_B79F_000021452DB6__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // PropDialog.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CPropDialog dialog
  12.  
  13. class CPropDialog : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CPropDialog(Properties *pProps, CWnd* pParent = NULL);   // standard constructor
  18.     Properties *m_pProps;
  19.  
  20. // Dialog Data
  21.     //{{AFX_DATA(CPropDialog)
  22.     enum { IDD = IDD_PROPERTY };
  23.     //}}AFX_DATA
  24.  
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CPropDialog)
  29.     public:
  30.     virtual BOOL DestroyWindow();
  31.     protected:
  32.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36.     CPtrArray m_arrVal;
  37. protected:
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CPropDialog)
  41.     virtual BOOL OnInitDialog();
  42.     afx_msg void OnModify();
  43.     virtual void OnCancel();
  44.     virtual void OnOK();
  45.     afx_msg void OnAdd();
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_PROPDIALOG_H__430FB7B3_A088_11D1_B79F_000021452DB6__INCLUDED_)
  54.